home *** CD-ROM | disk | FTP | other *** search
- package mx.logging
- {
- import flash.events.IEventDispatcher;
-
- public interface ILogger extends IEventDispatcher
- {
- function log(param1:int, param2:String, ... rest) : void;
-
- function error(param1:String, ... rest) : void;
-
- function fatal(param1:String, ... rest) : void;
-
- function info(param1:String, ... rest) : void;
-
- function debug(param1:String, ... rest) : void;
-
- function warn(param1:String, ... rest) : void;
-
- function get category() : String;
- }
- }
-
-